home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr11 / powerb5.zip / P5DOS011.TIP < prev    next >
Text File  |  1993-06-01  |  2KB  |  48 lines

  1. MS-DOS's DISKCOPY command uses only conventional memory,
  2. which means that copying high-density disks requires many
  3. disk swaps. Even worse, DISKCOPY doesn't make a sound when
  4. it prompts you to change disks. To avoid having to watch the
  5. screen constantly, I made a small change in DISKCOPY that
  6. causes it to beep when disks must be changed.
  7.  
  8. The change is very simple. Make a copy of your DISKCOPY.COM
  9. file and load it into a hexadecimal editor such as Central
  10. Point's PC Tools or The Norton Utilities. Next, use the
  11. editor's find or search command to find the word "insert,"
  12. which should bring you to the message about inserting a
  13. disk. Depending on your DOS version, you may find two
  14. separate strings for the source and target disks or only one
  15. string containing the characters %s (the C language's
  16. shorthand for a string that changes depending on the
  17. situation).
  18.  
  19. At the end of the string(s), you'll find a carriage return
  20. (code 0D hex) and a linefeed (0A hex). Replace each of these
  21. characters with the hex code 07 (the "bell" character).
  22. Repeat the procedure for the other string (if necessary),
  23. and remember to update the file before leaving the editor.
  24. Overwriting the carriage return and linefeed has another
  25. advantage: The messages 'Insert the Source diskette in drive
  26. X:' and 'Press any key when ready' now come on consecutive
  27. lines, so that all the messages associated with one copy
  28. operation fit on a single screen.
  29.  
  30. Jean-Louis Longueville
  31. Namur, Belgium
  32.  
  33. Editor's Note: This technique will help you get your disks
  34. copied faster unless you enjoy staring raptly at your PC
  35. during the entire operation. But if you are making a
  36. substantial number of copies, you might consider one of the
  37. many shareware and freeware utilities that save an image of
  38. a floppy disk to your hard drive and can reproduce the disk
  39. on demand.
  40.  
  41.  
  42. Title: Copy Alert
  43. Category: DOS
  44. Issue Date: October, 1992
  45. Editor: Brett Glass
  46. Supplementary Files: None
  47. Filename: P5DOS011.TIP
  48.